-
-
Notifications
You must be signed in to change notification settings - Fork 18.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CustomFunction deserializing escaped JSON strings #1814
Conversation
can you provide more description or elaboration what this PR trying to solve? screenshot/example of bug/errors/how to replicate the issue |
@HenryHengZJ This PR relates to #1539 . If it is json after unescaping, it will be parsed into a json object. |
@mokeyish do you have some examples chatflow that I can replicate the issue? |
In my case it's LLMChain that outputs a JSON string, and then the next node is CustomFunction. |
does the JSON string contains the escaped characters like |
Yes, it contains |
We will have to do the same for |
This comment was marked as off-topic.
This comment was marked as off-topic.
Okay, I'll change it later too. |
This PR relates to #1539 . If it is json after unescaping, it will be parsed into a json object.